home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 July: Mac OS SDK / Dev.CD Jul 96 SDK / Dev.CD Jul 96 SDK1.toast / Development Kits (Disc 1) / OpenDoc Development Framework / ODFDev / Nothing / Sources / Frame.h < prev    next >
Encoding:
Text File  |  1996-04-25  |  1.4 KB  |  50 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                Frame.h
  4. //    Release Version:    $ ODF 1 $
  5. //
  6. //    Copyright:    (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  7. //
  8. //========================================================================================
  9.  
  10. #ifndef FRAME_H
  11. #define FRAME_H
  12.  
  13. // ----- Framework Includes -----
  14.  
  15. #ifndef FWFRAME_H
  16. #include "FWFrame.h"
  17. #endif
  18.  
  19. //========================================================================================
  20. // Forward Class Desclarations
  21. //========================================================================================
  22.  
  23. class FW_CPresentation;
  24. class FW_CPart;
  25.  
  26. //========================================================================================
  27. // CLASS CNothingFrame
  28. //========================================================================================
  29.  
  30. class CNothingFrame : public FW_CFrame
  31. {
  32. //----------------------------------------------------------------------------------------
  33. //    Initialization/Destruction
  34. //
  35. public:
  36.     FW_DECLARE_AUTO(CNothingFrame)
  37.  
  38.     CNothingFrame(Environment* ev, ODFrame* odFrame, FW_CPresentation* presentation, FW_CPart* part);
  39.     virtual ~CNothingFrame();
  40.  
  41. //----------------------------------------------------------------------------------------
  42. //    Inherited API
  43. //
  44. public:
  45.     virtual void Draw(Environment* ev, ODFacet* odFacet, ODShape* invalidShape);
  46.  
  47. };
  48.  
  49. #endif
  50.